Indexpage

Hidden

Index

Indexpage1

Start

Installation

Follow the steps below to get started with your Site Template:

  1. Unzip the downloaded zip file themeforest-xxxxx.zip folder
  2. Open folder named main-file
  3. Here you will find assets folders of all files
  4. You will need to Upload these files to your Web Server using FTP in order to use it on your Website.
  5. Make sure you upload the required files/folders listed below:
    • css - Extra Stylesheets Folder plus Main Stylesheet File
    • images - Images Folder
    • jquery - Javacripts Folder
    • video - Videos Folder
    • .html extension files - main page template File
  6. You will need to Upload these files to your Web Server using FTP in order to use it on your Website and give the paths of files in .html extension files.
  7. You're now good to go..! Start adding your Content and show off your Brand New Beautiful Website in style.

HTML Structure

Splash screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader"> 
												.....
												</div>
												<!-- Splashscreen content start -->
												<section id="splashscreen"> 
												<div class="overlay-splashscreen"></div>
												<div class="splashscreen-content container position-relative"></div>
												<div class="main-wrap"></div>
												<div class="logo text-center"></div>
												.......
												</div>
												<div class="logo-tile"></div>
												.......
												</div>
												<div class="splash-btn border-radius"></div>
												.......
												</div>
												</div>
												</div>
												</section>
												</div> 
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Onboarding screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Onboarding content start -->
												<section id="onboarding" class="background ">
												<div class="Ellipse1"></div>
												<div class="Ellipse2"></div>
												<div class="Ellipse3"></div>
												<div class="Ellipse4"></div>
												<div id="carouselExampleIndicators" class="carousel slide onboarding-slider" data-bs-ride="carousel">
												<div class="carousel-inner">
												<div class="carousel-item first_slide active" id="slide1">
												.....
												</div>
												<div class="carousel-item second_slide" id="slide2">
												.....
												</div>
												<div class="carousel-item third_slide" id="slide3">
												.....
												</div>
												</div>
												<div class="carousel-indicators custom-slider-btn">
												<button type="button" id="first" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0"
												class="custom-slider-dots active">
												</button>
												<button type="button" id="second" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"
												class="custom-slider-dots" aria-current="true">
												</button>
												<button type="button" id="third" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2"
												class="custom-slider-dots">
												</button>
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Let get started screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- let get started content start -->
												<section id="let-get-started-main" class="background">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="let-get-started-wrap position-relative">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Sign up, Sign in, Forget password, Otp screen, Reset password, Notification allow, Create new pin screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- let get started content start -->
												<section id="sign-up-main" class="background">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="sign-up-wrap position-relative">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Verify email screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- let get started content start -->
												<section id="verify-main" class="background">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="verify-email position-relative">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Set finger print screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- let get started content start -->
												<section id="fingerprint-main" class="background">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="finger-print position-relative">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Preferred language screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- let get started content start -->
												<section id="language-main" class="background">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="language-main-preferred position-relative">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Choose interest screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- let get started content start -->
												<section id="choose-interest-main" class="background">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="choose-interest-main position-relative">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Account created screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- let get started content start -->
												<section id="account-created-main" class="background">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="sign-up-wrap position-relative">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Homescreen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Homescreen content start -->
												<section id="homescreen-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="homecreen1-content">
												......
												</div>
												</section>
												<!-- Bottom tabbar content start -->
												<div class="bottom-tabbar">
												<div class="bottom-tabbar-full">
												<nav>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												</nav>
												</div>
												</div>
												<!-- SideBar setting menu start -->
												<div class="menu-sidebar details">
												<div class="offcanvas offcanvas-start custom-offcanvas-noti" id="offcanvasExample">
												<div class="offcanvas-header custom-header-offcanva">
												....
												</div>
												<div class="offcanvas-body">
												<div class="setting-bottom">
												....
												</div>
												</div>
												</div>
												</div>
												<!-- Logout modal start -->
												<div class="modal fade"  id="logout-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Homescreen2 page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Homescreen2 content start -->
												<section id="homescreen2-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="homescreen2-wrap">
												......
												</div>
												</section>
												<!-- Bottom tabbar content start -->
												<div class="bottom-tabbar">
												<div class="bottom-tabbar-full">
												<nav>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												</nav>
												</div>
												</div>
												<!-- SideBar setting menu start -->
												<div class="menu-sidebar details">
												<div class="offcanvas offcanvas-start custom-offcanvas-noti" id="offcanvasExample">
												<div class="offcanvas-header custom-header-offcanva">
												....
												</div>
												<div class="offcanvas-body">
												<div class="setting-bottom">
												....
												</div>
												</div>
												</div>
												</div>
												<!-- Logout modal start -->
												<div class="modal fade"  id="logout-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Seach screen page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Search screen start -->
												<section id="search-screen-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="search-screen-bottom">
												......
												</div>
												</section>
												<!-- Bottom tabbar content start -->
												<div class="bottom-tabbar">
												<div class="bottom-tabbar-full">
												<nav>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												</nav>
												</div>
												</div>
												<!-- SideBar setting menu start -->
												<div class="menu-sidebar details">
												<div class="offcanvas offcanvas-start custom-offcanvas-noti" id="offcanvasExample">
												<div class="offcanvas-header custom-header-offcanva">
												....
												</div>
												<div class="offcanvas-body">
												<div class="setting-bottom">
												....
												</div>
												</div>
												</div>
												</div>
												<!-- Logout modal start -->
												<div class="modal fade"  id="logout-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Recent search page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Recent search content start -->
												<section id="recent-search-screen-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Hot deal week page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- content start -->
												<section id="" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Search not found, Search found, Empty cart, Wishlist, Account screen content page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Content screen start -->
												<section id="" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												<!-- Bottom tabbar content start -->
												<div class="bottom-tabbar">
												<div class="bottom-tabbar-full">
												<nav>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												</nav>
												</div>
												</div>
												<!-- SideBar setting menu start -->
												<div class="menu-sidebar details">
												<div class="offcanvas offcanvas-start custom-offcanvas-noti" id="offcanvasExample">
												<div class="offcanvas-header custom-header-offcanva">
												....
												</div>
												<div class="offcanvas-body">
												<div class="setting-bottom">
												....
												</div>
												</div>
												</div>
												</div>
												<!-- Logout modal start -->
												<div class="modal fade"  id="logout-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Filter page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Filter content start -->
												<section id="filter-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="position-relative">
												<div class="main-wrap-sec">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Category1, Category2 page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- content start -->
												<section id="" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-wrap-sec">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Best seller, Feature product, Choose-brand, New arrival, Clothes, Shoes, Electronics, Rating review, Checkout screen, Choose delivery, Choose delivery partner, Choose payment method, Select promo and voucher page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- content start -->
												<section id="" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Single clothes, Single shoes, Single electronic page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Content start -->
												<section id="single-clothes-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="main-content-wrap-single">
												......
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Cart page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Cart content screen start -->
												<section id="cart-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												<!-- Bottom tabbar content start -->
												<div class="bottom-tabbar">
												<div class="bottom-tabbar-full">
												<nav>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												<a>
												....
												</a>
												</nav>
												</div>
												</div>
												<!-- SideBar setting menu start -->
												<div class="menu-sidebar details">
												<div class="offcanvas offcanvas-start custom-offcanvas-noti" id="offcanvasExample">
												<div class="offcanvas-header custom-header-offcanva">
												....
												</div>
												<div class="offcanvas-body">
												<div class="setting-bottom">
												....
												</div>
												</div>
												</div>
												</div>
												<!-- Logout modal start -->
												<div class="modal fade"  id="logout-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												<!-- Cart product update modal start -->
												<div class="modal fade" id="cart-product-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog p-0">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Final checkout page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Final checkout screen start -->
												<section id="checkout-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												<!-- Payment processing modal content start -->
												<div class="modal fade" data-bs-backdrop="static" data-bs-keyboard="false" id="payment-processing-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												<!-- Order failed modal content start -->
												<div class="modal fade" data-bs-backdrop="static" data-bs-keyboard="false" id="order-failed-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												<!-- Order confirmed modal content start -->
												<div class="modal fade" data-bs-backdrop="static" data-bs-keyboard="false" id="order-confirmed-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Profile edit, Empty order, Payment method, Add new card, Delivery address, Add new address1, Add new address2, Promo and voucher, Notification, Security, Marketing preference, Notification setting, Language, Currency, Faq, Data and privacy, About us, Feedback, Contact us, Invite friend, Delete deactive account, Delete account, Deactive account page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Content screen start -->
												<section id="" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Wallet page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Wallet content screen start -->
												<section id="wallet-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="main-content-wrap">
												......
												</div>
												</section>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Active order page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Content screen start -->
												<section id="" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												<!-- Order cancel modal content start -->
												<div class="modal fade" id="order-cancel-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Order track page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Content screen start -->
												<section id="order-track-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content-wrap">
												......
												</div>
												</div>
												</section>
												<!-- Order arrived modal content start -->
												<div class="modal fade" id="order-arrived-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Leave review page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Content screen start -->
												<section id="leave-review-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content">
												......
												</div>
												</div>
												</section>
												<!-- Review posted modal content start -->
												<div class="modal fade" id="review-posted-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										
Setting page structure

Zen Mart follows a simple coding structure. here is the sample:

											
												<!DOCTYPE html>
												<html lang="zxx" dir="ltr">
												<!-- All your metas will be here -->
												<meta charset="UTF-8">
												<meta http-equiv="X-UA-Compatible" content="IE=edge">
												<meta name="viewport" content="width=device-width, initial-scale=1.0">
												<head>
												<!-- Your Stylesheets, Title -->
												...
												</head>
												<body>
												<!-- Page Wrapper Start -->
												<div class="site-content"> 
												<!-- The Preloader Before Site Load -->
												<div class="preloader">
												........
												</div>
												<!-- Header start -->
												<header id="top-header">
												<div class="header-wrap-home">
												<div class="header-logo-home">
												.....
												</div>
												<div class="header-name">
												.....
												</div>
												<div class="home-setting">
												.....
												</div>
												</div>
												</header>
												<!-- Content screen start -->
												<section id="setting-main" class="background1">
												<div class="onboarding-bg-img1"></div>
												<div class="onboarding-bg-img2">
												...
												</div>
												<div class="red"></div>
												<div class="red1"></div>
												<div class="yellow"></div>
												<div class="green"></div>
												<div class="container position-relative">
												<div class="main-content">
												......
												</div>
												</div>
												</section>
												<!-- Logout modal content start -->
												<div class="modal fade" id="logout-modal" tabindex="-1"  aria-hidden="true">
												<div class="modal-dialog modal-dialog-centered">
												<div class="modal-content">
												<div class="modal-body">
												......
												</div>
												</div>
												</div>
												</div>
												</div>
												<!-- Page Wrapper End -->
												<!-- Your All Scripts will be here -->
												...
												</body>
												</html>
											
										

Logo Settings

The Logo Container can be found in the - splashscreen.html file

											
												<div class="logo text-center"><img  src="assets/images/splashscreen/logo.png" alt="logo" ></div>
											
										
Favicon

You can add a Favicon to your Website using the following code just bottom to the Stylesheet files links:

											
												<link rel="icon" href="assets/images/favicon/icon.png" >
											
										

Changing Fonts

Change your Fonts from Google Fonts Library directly if you plan to use a Google Font. You can find the Linking to the Font Files in the head tag

											
												<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
											
										

Website Optimization Tips

A Fast & Optimized Website has several factors which needs to be implemented in order to achieve the desired results. There are several Optimization Techniques available which will definitely affect your Website's Performance in a Positive Way & we want to share a few of them with you:

  • Image Compression & Optimization

    We tend to use Lots of Images on our Websites but we often do not make efforts to Compress & Optimize them. Remember, the Larger the Image, the more time it takes to download and therefore this slows your website loading times affecting User Experience. Your customer will leave your website if it does not load within 3-5 Seconds which adversely affects your Sales. Therefore, it is important to Resize, Optimize & Compress your Images before using it on your Website. Here are some Tips which might come handy in optimizing images:

    • Resize your Images: Resize your Images before using it on your Website. Do not just Download an Image & place it as it is in your Website's <img> Tag without resizing it. The size/resolution of the Image matters since it is not recommended to use an Image size of 1200px x 800px in a Content Size of 300px x 200px as this is unnecessary. Resize it to 300px x 200px
    • Image Formats: There are three common file types that are used for web images which are JPEG, GIF, & PNG. For images with a Flat Background use JPEG images, for images with a Transparent background use PNG images and for images with Animations use GIF images.
    • Compressing Images: Images Compression is important as it considerably reduces the size without losing the quality. There are several FREE Image Optimization Tools available to Download.
      For MAC use ImageOptim
      For Windows use Riot for compressing JPEG Images & PNG Gauntlet for PNG Images.
  • CSS & jQuery Minifications

    It is also recommended that you Combine & Minify all your CSS Files to a single CSS File & all Javascript Files to a single JS File since Minification reduces the size of the File and Combining the files helps in reducing the number of HTTP requests made to the server. This is also an Important Factor in increasing the speed of your website. There are several tools available online to Minify your CSS & JS Files. Our recommendations are:
    For CSS use CSS Minifier and For Javascript use Javascript Minifier.

  • Fast Web Hosting Servers

    A lot depends on your Web Hosting Servers, so it is recommended that you choose a Hosting Company/Server that provides a Reliable & a Fast Hosting Service. You can check out some recommended Hosting Services here: http://themeforest.net/get_hosting.